home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / pcmagazi / 1989 / 19 / 19utilta.xyw next >
Text File  |  1989-10-02  |  1KB  |  41 lines

  1.  
  2. TABLE A (in SIDEBAR)
  3. Title:  1STClass's Command Set
  4.  
  5.  
  6. P    specifies COM port (1, 2, 3 or 4) for num and the line speed for 
  7.     "str".  There are no defaults for these parameters.  A P command 
  8.     must appear in every script before any T or R command is listed. 
  9.     Example:
  10.     P  2  "1200"
  11.  
  12. C    no num; used as "str", writes a comment to the screen.  Example:
  13.     C  "This is a comment ^M^J"
  14.  
  15. D    delays (pauses) for num seconds; no "str", no default.  Example:
  16.     D  15
  17.  
  18. T    no num; transmits a string ("str").  See B for example.
  19.  
  20. R    waits num seconds (timeout) for a specified "str" to be received.  
  21.     The default num value of 0 tells 1STClass to wait forever.  The 
  22.     user can abort the script by pressing Esc.  See B for example.
  23.  
  24. B    no num, no "str".  The B command resets the bps rate of a multi-    
  25.     speed modem.  The following sequence, for example, would dial 
  26.     up, wait 40 seconds, then change your modem speed on the basis 
  27.     of the "CONNECT" message:
  28.     T  "ATDT123-4567^M
  29.     R  40  "CONNECT"
  30.     B
  31.  
  32. M    no num, no "str"; enters Mail Link processing in "master" mode.  
  33.     Any script file for calling MCI must contain an M command; it 
  34.     marks the point at which 1STClass should switch into a Mail Link 
  35.     session.  Once that session terminates, execution of the script file 
  36.     continues.
  37.  
  38. S    no num, no "str"; enters Mail Link processing in "slave" mode.  
  39.     The S command is provided so that two 1STClass programs can 
  40.     directly communicate with each other.
  41.